home *** CD-ROM | disk | FTP | other *** search
- VERSION 4.00
- Begin VB.Form UserInfo
- Appearance = 0 'Flat
- BackColor = &H00C0C0C0&
- Caption = "UserInfo"
- ClientHeight = 1965
- ClientLeft = 3675
- ClientTop = 3330
- ClientWidth = 3735
- BeginProperty Font
- name = "MS Sans Serif"
- charset = 0
- weight = 700
- size = 8.25
- underline = 0 'False
- italic = 0 'False
- strikethrough = 0 'False
- EndProperty
- ForeColor = &H80000008&
- Height = 2370
- Left = 3615
- LinkTopic = "Form1"
- ScaleHeight = 1965
- ScaleWidth = 3735
- Top = 2985
- Width = 3855
- Begin VB.CommandButton Ok
- Appearance = 0 'Flat
- BackColor = &H80000005&
- Caption = "Ok"
- Default = -1 'True
- BeginProperty Font
- name = "MS Sans Serif"
- charset = 0
- weight = 400
- size = 8.25
- underline = 0 'False
- italic = 0 'False
- strikethrough = 0 'False
- EndProperty
- Height = 330
- Left = 1185
- TabIndex = 4
- Top = 1215
- Width = 1275
- End
- Begin VB.TextBox Email
- Appearance = 0 'Flat
- BeginProperty Font
- name = "MS Sans Serif"
- charset = 0
- weight = 400
- size = 8.25
- underline = 0 'False
- italic = 0 'False
- strikethrough = 0 'False
- EndProperty
- Height = 285
- Left = 1110
- TabIndex = 3
- Text = "zthomas@activexpert.com"
- Top = 615
- Width = 2370
- End
- Begin VB.TextBox UserName
- Appearance = 0 'Flat
- BeginProperty Font
- name = "MS Sans Serif"
- charset = 0
- weight = 400
- size = 8.25
- underline = 0 'False
- italic = 0 'False
- strikethrough = 0 'False
- EndProperty
- Height = 285
- Left = 1110
- TabIndex = 2
- Text = "Zane Thomas"
- Top = 255
- Width = 2370
- End
- Begin VB.Label Label1
- Alignment = 1 'Right Justify
- Appearance = 0 'Flat
- BackColor = &H00C0C0C0&
- Caption = "E-Mail:"
- BeginProperty Font
- name = "MS Sans Serif"
- charset = 0
- weight = 400
- size = 8.25
- underline = 0 'False
- italic = 0 'False
- strikethrough = 0 'False
- EndProperty
- ForeColor = &H80000008&
- Height = 285
- Index = 1
- Left = -255
- TabIndex = 1
- Top = 585
- Width = 1200
- End
- Begin VB.Label Label1
- Alignment = 1 'Right Justify
- Appearance = 0 'Flat
- BackColor = &H00C0C0C0&
- Caption = "User Name:"
- BeginProperty Font
- name = "MS Sans Serif"
- charset = 0
- weight = 400
- size = 8.25
- underline = 0 'False
- italic = 0 'False
- strikethrough = 0 'False
- EndProperty
- ForeColor = &H80000008&
- Height = 285
- Index = 0
- Left = -240
- TabIndex = 0
- Top = 285
- Width = 1200
- End
- Attribute VB_Name = "UserInfo"
- Attribute VB_Creatable = False
- Attribute VB_Exposed = False
- Option Explicit
- Private Sub Email_GotFocus()
- email.SelStart = 0
- email.SelLength = Len(email.Text)
- End Sub
- Private Sub Form_Load()
- email.Text = g_emailaddr
- UserName.Text = g_username
- End Sub
- Private Sub Ok_Click()
- g_emailaddr = email.Text
- g_username = UserName.Text
- Unload Me
- End Sub
- Private Sub UserName_GotFocus()
- UserName.SelStart = 0
- UserName.SelLength = Len(UserName.Text)
- End Sub
-